Dynomotion

Group: DynoMotion Message: 11871 From: az9633@ymail.com Date: 7/8/2015
Subject: G code subroutine repeat

Is there a graceful way in Kcnc G code to repeat a profile multiple times in a series of rows and columns with a specified x and y offset for each repeat?  

For example  I want to repeat a profile that is 3 inch x 4 inch in a piece of material that is 20  x 30 inches.  I would like to specify 6 columns and 7 rows without just generating the raw code for each location on the part.  The program would continue the repeats without intervention until all are complete .


AZ

  

Group: DynoMotion Message: 11872 From: Tom Kerekes Date: 7/8/2015
Subject: Re: G code subroutine repeat
Hi AZ,

I'm not sure how graceful but you can use GCode Variables and Subroutine Loops.  See attached Gcode and Plot.

HTH
Regards
TK



Group: DynoMotion Message: 11876 From: az@aimele.com Date: 7/8/2015
Subject: Re: G code subroutine repeat [2 Attachments]
Thank you, That sure beats the buckets of G code.

AZ



------- Original Message -------
From : Tom Kerekes tk@... [DynoMotion][mailto:DynoMotion@yahoogroups.com]
Sent : 7/8/2015 12:04:57 PM
To : DynoMotion@yahoogroups.com
Cc :
Subject : RE: Re: [DynoMotion] G code subroutine repeat [2 Attachments]

 
[Attachment(s) from Tom Kerekes included below]

Hi AZ,

I'm not sure how graceful but you can use GCode Variables and Subroutine Loops.  See attached Gcode and Plot.

HTH
Regards
TK



Group: DynoMotion Message: 11887 From: jojodillinger Date: 7/12/2015
Subject: Re: G code subroutine repeat
Hello,
I am using the array sample and noticed that halting the motion in KmotionCNC (either F5 or button) somehow confuses the G54 offset.
 For instance the example below. If I halt it inbetween and restart, KmotionCNC tells me that softlimits are violated and motion cant continue. What could be the reason for that?
I also noticed, that with such a subroutine sample the deceleration when hitting F5 (halt) is very slow; which is not the case if I use a non-subroutine gcode. In the latter case deceleration to stop is quite instant.
Kind regards,

Johannes



(Perform operations over an array)
(Define Array)
#1=2 (number of rows)
#2=8 (number of cols)
#3=59.0 (Grid size X)
#4=59.0 (Grid size Y)
#5=320.0073 (Start X)
#6=31.7562 (Start Y)

(Variables)
#7=0 (current row)
#8=0 (current column)

G21 G90
F1000
M98 P100 L[#2] (do all the columns)
(Define the XY Fixture Offset at the very end of pattern)
G10L2P1X[#5]Y[#6]
G00 X0Y0
M2

O100
M98 P200 L[#1] (do each row of the column)
#8 = [#8 + 1] (increment the column)
#7 = [0] (reset to row zero)
M99

O200
(Define the XY Fixture Offset)
G10L2P1X[#8 * #3 + #5]Y[#7 * #4 + #6]
G54 (Select the fixture)
M98 P300 (Do the pattern)
#7 = [#7 + 1] (increment the row)
M99

O300 (Do some pattern)

G00 Z5.0000

G00 X-4.5000 Y-4.5000
G00 Z0.5000
G01 Z-1.2000 F150
G00 Z5.0000

M99

  


Group: DynoMotion Message: 11888 From: jojodillinger Date: 7/12/2015
Subject: Re: G code subroutine repeat
Or might the problem be the G54 definition that I additionally introduced after completing the entire pattern?:

G10L2P1X[#5]Y[#6]
G00 X0Y0

?
I can only access the machine again tomorrow..
Kind regards,
Johannes
Group: DynoMotion Message: 11924 From: Tom Kerekes Date: 7/21/2015
Subject: Re: G code subroutine repeat
Hi Johannes,

Sorry for the delay.  I think the issue has to do with re-winding the lookahead for the Interpreter to restore previous GCode Variable States on a Halt.

Here is a patch for Test Version 4.33l that should resolve the issue.


Please let us know if it resolves the problem.

Thanks
TK


Group: DynoMotion Message: 11928 From: jojodillinger Date: 7/22/2015
Subject: Re: G code subroutine repeat
Hi Tom,

no problem for the delay. The pattern milling saved so much work already;) Being able to stop inbetween will make it even more powerfull.

Is it correct to copy the dll to this folder? :
"KMotion433l\KMotion\Release"

There is a larger file with the same name in folder
"KMotion433l\KMotion\Debug"
but maybe its not used in regular processing.

I upgraded version 4.33l to 4.33n, I guess this will not be a problem in combination with this patch?

Kind regards,

Johannes
Group: DynoMotion Message: 11933 From: Tom Kerekes Date: 7/22/2015
Subject: Re: G code subroutine repeat
Hi Johannes,

Yes, copy the GCodeInterpreter.dll to the KMotion433l\KMotion\Release.

The Debug directory is not used unless you are running debug code which you normally would not be.

Yes, please also use the patched KFLOP Firmware (DSPKFLOP.out) V4.33n

Regards
TK

Group: DynoMotion Message: 11935 From: jojodillinger Date: 7/22/2015
Subject: Re: G code subroutine repeat
Hi Tom,
great! Will give it a try (in the comming weeks only..) and let you know.
Kind regards,
Johannes